Change BoxPlot attributes in OnBeforePrint
Hello,
I want to change attributes of BoxPlot-Series like 'MedianPen.Style' in the OnBeforePrint methode but I don't no how.
I want/must change it, because changes in the ChartEditor didn't affect at runtime...
This sample dont't work!
Thanks
I want to change attributes of BoxPlot-Series like 'MedianPen.Style' in the OnBeforePrint methode but I don't no how.
I want/must change it, because changes in the ChartEditor didn't affect at runtime...
This sample dont't work!
procedure Chart1OnBeforePrint(Sender: TfrxComponent);
begin
Chart1.SeriesData[0].MedianPen.Style:=psSolid;
end;
Thanks